home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Clocks / clocks / ClockApp.h < prev    next >
Encoding:
Text File  |  1992-12-20  |  478 b   |  19 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface ClockApp: Application
  4. {
  5.   id dialSizeSlider;        // slider for dialsize.
  6.   id typeMatrix;        // the matrix for the clock type.
  7.   id clockView;            // the clockView.
  8. }
  9.  
  10. + new;                // create the new application, and make us its delegate.
  11. - terminate:sender;        // store the defaults, and go away.
  12. - setClockView:anObject;
  13. - setDialSizeSlider:anObject;
  14. - setTypeMatrix:anObject;
  15. - appDidInit:sender;        // get info such as window positioning.
  16.  
  17. @end
  18.  
  19.